✮ Marissa Barch ✮

Summary 3

What is CSS? 

CSS is the style structure of how your HTML will be laid out. CSS became a lifesaver so you could have the two pages split up between HTML and CSS rather than putting all the information into the HTML where it gets clustered. Style sheets are important because it is the whole look of how your page will be.     

 

CSS Syntax

 The CSS is a selector and a declartion. By creating specification for certain style choices for sections make them uniform on ech page. The selector goes on the outside while the declartion goes on the inside of the brackets. Things like making to choice of font or color are the property while chooseing what it is like blue or arial is the property value.            

CSS Selectors  

Their are many different various of selectors that can be made like Simple, Combinator, Pseudo-class , Pseudo-elements, and Attribute. ID selectors will use the # symbol to idenitify what it is in the CSS and to then put it in a specific location in the HTML to identifiy what it is. Class identifies will start with a period instead. These can help to make a page more customized than it was before allowing you to create specfic style for certain sections.